home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / IVM.ZIP / ROUTINES / BEEP.RTN next >
Text File  |  1992-12-25  |  262b  |  9 lines

  1. ;  Beeps the speaker number of times in cx
  2. ;  CX=Number of beeps.
  3.  
  4.         mov     ax,0E07h                ; BIOS display char., BEL
  5. beep_loop:
  6.         int     010h                    ; Beep
  7.         loop    beep_loop               ; Beep until --CX = 0
  8.  
  9.